home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / hewitt.swf / scripts / DefineButton2_1983 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2011-06-09  |  685 b   |  23 lines

  1. on(press){
  2.    if(_root.inven._currentframe == 1)
  3.    {
  4.       if(_root.micon._currentframe == 2)
  5.       {
  6.          _root.next_dis1 = 2;
  7.          _root.next_txt1 = "Looks like a spilt bottle of ink.";
  8.       }
  9.       if(_root.micon._currentframe == 1 && _root.range == true)
  10.       {
  11.          _root.next_dis1 = 2;
  12.          _root.next_txt1 = "I don\'t want to get ink all over my hands.";
  13.       }
  14.       if(_root.micon._currentframe == 55 && _root.range == true)
  15.       {
  16.          _root.sfx.gotoAndStop(3);
  17.          _root.micon.gotoAndStop(58);
  18.          _root.next_dis1 = 2;
  19.          _root.next_txt1 = "Now this paper weight should make a very nice stamp.";
  20.       }
  21.    }
  22. }
  23.